home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / demos / OpenGL / tex_cube / Makefile < prev    next >
Makefile  |  1996-11-11  |  354b  |  18 lines

  1. #!smake
  2.  
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. LC++INCS= -I$(ROOT)/usr/include -I$(ROOT)/usr/include/GL
  6. LLDLIBS    = -limage -lGLU -lGL -lX11 -lmalloc
  7. C++FILES = oglwindow.c++ texture.c++ unitsquare.c++ tex_cube.c++ 
  8.  
  9. TARGETS    = tex_cube
  10.  
  11. default all: $(TARGETS)
  12.  
  13. include ${COMMONRULES}
  14.  
  15. $(TARGETS): $(OBJECTS)
  16.     $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
  17.